Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@rollup/plugin-eslint
Advanced tools
🍣 A Rollup plugin to lint entry points and all imported files with ESLint.
Using npm:
npm install @rollup/plugin-eslint --save-dev
# or
yarn add -D @rollup/plugin-eslint
import eslint from '@rollup/plugin-eslint';
export default {
input: 'main.js',
plugins: [
eslint({
/* your options */
})
]
};
See more options here eslint-config.
You can also use eslint configuration in the form of a .eslintrc.*
file in your project's root. It will be loaded automatically.
Type: Boolean
Default: false
If true, will auto fix source code.
Type: Boolean
Default: false
If true, will throw an error if any errors were found.
Type: Boolean
Default: false
If true, will throw an error if any warnings were found.
Type: Array | String
Default: []
A single file, or array of files, to include when linting.
Type: Array | String
Default: node_modules/**
A single file, or array of files, to exclude when linting.
Type: Function | String
Default: stylish
Custom error formatter or the name of a built-in formatter.
FAQs
Verify entry point and all imported files with ESLint
The npm package @rollup/plugin-eslint receives a total of 23,088 weekly downloads. As such, @rollup/plugin-eslint popularity was classified as popular.
We found that @rollup/plugin-eslint demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.